a23e190af5e4924a3779ac32b1975d4fc0c51686,portal-impl/src/com/liferay/portal/webcache/WebCachePoolImpl.java,WebCachePoolImpl,afterPropertiesSet,#,33

Before Change


public class WebCachePoolImpl implements WebCachePool {

	public void afterPropertiesSet() {
		_portalCache = (PortalCache<String, Object>)_singleVMPool.getCache(
			_CACHE_NAME);
	}

	@Override

After Change


public class WebCachePoolImpl implements WebCachePool {

	public void afterPropertiesSet() {
		_portalCache = SingleVMPoolUtil.getCache(_CACHE_NAME);
	}

	@Override